<?xml version="1.0" encoding="iso-8859-1"?>
<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">

    <fo:layout-master-set>
        <fo:simple-page-master margin-right="20mm" margin-left="20mm" 
            margin-bottom="10mm" margin-top="10mm" page-width="300mm" 
            page-height="400mm" master-name="page">

            <fo:region-body margin-right="0mm" margin-left="0mm" 
                margin-bottom="10mm" margin-top="0mm"/>

            <fo:region-after extent="10mm"/>

        </fo:simple-page-master>
    </fo:layout-master-set>

    <fo:page-sequence master-name="page">
        <fo:flow flow-name="xsl-region-body">

            <fo:block space-after="12pt" font-weight="bold" 
                font-size="36pt" text-align="center">
                Insrer des notes de bas de pages
            </fo:block>
            
            <fo:block font-size="24pt">
                Cet appel de
                <fo:footnote>
                    <fo:inline>note
                        <fo:inline font-size="16pt" 
                        vertical-align="super">
                            1
                        </fo:inline>
                    </fo:inline>
                    <fo:footnote-body>
                        <fo:block>
                            1. Le texte de la premire note du document.
                        </fo:block>
                    </fo:footnote-body>
                </fo:footnote>
                  renvoie  la premire note du bas de cette page.
            </fo:block>
            
            <fo:block font-size="24pt">
                Ce second appel de 
                <fo:footnote>
                    <fo:inline>note
                        <fo:inline font-size="16pt" 
                        vertical-align="super">
                            2
                        </fo:inline>
                    </fo:inline>
                    <fo:footnote-body>
                        <fo:block>
                            2. Le texte de la seconde note du document.
                        </fo:block>
                    </fo:footnote-body>
                </fo:footnote>
                renvoie  la deuxime note du bas de cette page.
            </fo:block>
            
        </fo:flow>
    </fo:page-sequence>
</fo:root>
